home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / ISO9660 / OS2 / UTILITY / CLOCK / HELPWIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-21  |  352 b   |  15 lines  |  [TEXT/hscd]

  1. // Class HELPWIN: Encapsulates the startup/shutdown logic for an OS/2-PM help window.
  2.  
  3. #define INCL_WIN
  4. #include <os2.h>
  5.  
  6. class HelpWindow
  7. {
  8.   private:
  9.     HWND Handle ;
  10.  
  11.   public:
  12.     HelpWindow ( HAB Anchor, HMODULE Module, USHORT Id, PSZ Filename, PSZ Title ) ;
  13.     ~HelpWindow ( ) ;
  14.     HWND QueryHandle () { return ( Handle ) ; }
  15. } ;